home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snpd9611.zip / ROLLDICE.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  238b  |  15 lines

  1. /* +++Date last modified: 28-Aug-1996 */
  2.  
  3. /*
  4. **  ROLLDICE.H - SNIPPETS header file for ROLLDICE.C
  5. */
  6.  
  7. #ifndef ROLLDICE__H_
  8. #define ROLLDICE__H_
  9.  
  10. #include <stdlib.h>
  11.  
  12. char *roll_dice(int d, int s);
  13.  
  14. #endif /* ROLLDICE__H_ */
  15.